// Draw stars
// By Ben 01/10/2018

#include <iostream>
using namespace std;

int main(){
	int n_Stars = 0;
	//Ask user to enter a number of stars to create.
	std::cout << "Enter the amount of stars to create: ";
	//Read in user choice.
	std::cin >> n_Stars;
	//Draw the stars
	for (int i = 1; i <= n_Stars; i++){
		for (int j = 1; j <= i; j++){
			std::cout << "*";
		}
		//Put a line break.
		std::cout << endl;
	}

	system("pause");
	return 0;
}